iT邦幫忙

c language相關文章
共有 7 則文章

技術 【C language part 4】陣列與字串&函式

陣列 陣列是一群具有相同名稱或資料型態的變數集合。 由於整個陣列中的變數均具有相同的名稱,因此若要存取陣列中的變數,我們只需要透過陣列的 index 來...

技術 【C language part 3】條件&迴圈

條件判斷 Decision Control Statement 為了應付程式可能遇到的各種狀況,C 提供了 if 條件判斷陳述。 情況、情境、狀態或條件的陳述...

技術 【C language part 2】變數&資料型態、輸入輸出、運算子&運算式

撰寫第一支程式!! #include <stdio.h> #include <stdlib.h> void main() {...

技術 【C language part 1】淺談 C 語言-認識C

在台科大大一的課程當了助教,也寫了不少給大一新生看的講義。這邊就分享一下當了兩年助教的講義內容給各位剛步入程式語言領域新生兒們~。 What is Progra...

鐵人賽 自我挑戰組 DAY 3

技術 Day 3 - A short introduction to gcc usage - 2

Today I will introduce the order of compiling. First of all, type the command be...

鐵人賽 自我挑戰組 DAY 2

技術 Day 2 - A short introduction to gcc usage - 1

In this part, I will compile a simple program called hello_world.c, and describe...

鐵人賽 自我挑戰組 DAY 1

技術 Day 1 - Series Overview

In this series, I want to introduce some concepts of the C programming language...